home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
4_0
/
SNDLIST-
/
TERMINAT.C
< prev
next >
Wrap
Text File
|
1988-11-10
|
316b
|
24 lines
/*
Sound lister
"Terminate.c"
*/
#include "SndList.h"
static void DoCloseBehind(window)
register WindowPeek window;
{
if (window) {
DoCloseBehind(window->nextWindow);
if (IsAppWindow(window))
DoCloseWindow(window);
}
}
void Terminate()
{
DoCloseBehind(FrontWindow());
Play(ByeSnd);
ExitToShell();
}